src/Kinds/K8sValidatingWebhookConfiguration.php
<?php
namespace RenokiCo\PhpK8s\Kinds;
use RenokiCo\PhpK8s\Contracts\InteractsWithK8sCluster;
use RenokiCo\PhpK8s\Contracts\Watchable;
use RenokiCo\PhpK8s\Traits\Resource\HasWebhooks;
class K8sValidatingWebhookConfiguration extends K8sResource implements
InteractsWithK8sCluster,
Watchable
{
use HasWebhooks;
/**
* The resource Kind parameter.
*
* @var null|string
*/
protected static $kind = 'ValidatingWebhookConfiguration';
/**
* The default version for the resource.
*
* @var string
*/
protected static $defaultVersion = 'admissionregistration.k8s.io/v1';
/**
* Wether the resource has a namespace.
*
* @var bool
*/
protected static $namespaceable = false;
}