renoki-co/php-k8s

View on GitHub
src/Kinds/K8sMutatingWebhookConfiguration.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace RenokiCo\PhpK8s\Kinds;

use RenokiCo\PhpK8s\Contracts\InteractsWithK8sCluster;
use RenokiCo\PhpK8s\Contracts\Watchable;
use RenokiCo\PhpK8s\Traits\Resource\HasWebhooks;

class K8sMutatingWebhookConfiguration extends K8sResource implements
    InteractsWithK8sCluster,
    Watchable
{
    use HasWebhooks;

    /**
     * The resource Kind parameter.
     *
     * @var null|string
     */
    protected static $kind = 'MutatingWebhookConfiguration';

    /**
     * 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;
}