UNPKG

cdk8s-grafana

Version:
1,161 lines 673 kB
import { ApiObject, GroupVersionKind } from 'cdk8s'; import { Construct } from 'constructs'; /** * MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. * * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration */ export declare class KubeMutatingWebhookConfigurationV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeMutatingWebhookConfigurationV1Beta1Props): any; /** * Defines a "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeMutatingWebhookConfigurationV1Beta1Props); } /** * MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration. * * @schema io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList */ export declare class KubeMutatingWebhookConfigurationListV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeMutatingWebhookConfigurationListV1Beta1Props): any; /** * Defines a "io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfigurationList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeMutatingWebhookConfigurationListV1Beta1Props); } /** * ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. * * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration */ export declare class KubeValidatingWebhookConfigurationV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeValidatingWebhookConfigurationV1Beta1Props): any; /** * Defines a "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeValidatingWebhookConfigurationV1Beta1Props); } /** * ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration. * * @schema io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList */ export declare class KubeValidatingWebhookConfigurationListV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeValidatingWebhookConfigurationListV1Beta1Props): any; /** * Defines a "io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfigurationList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeValidatingWebhookConfigurationListV1Beta1Props); } /** * ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. * * @schema io.k8s.api.apps.v1.ControllerRevision */ export declare class KubeControllerRevision extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ControllerRevision" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ControllerRevision". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionProps): any; /** * Defines a "io.k8s.api.apps.v1.ControllerRevision" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionProps); } /** * ControllerRevisionList is a resource containing a list of ControllerRevision objects. * * @schema io.k8s.api.apps.v1.ControllerRevisionList */ export declare class KubeControllerRevisionList extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ControllerRevisionList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ControllerRevisionList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionListProps): any; /** * Defines a "io.k8s.api.apps.v1.ControllerRevisionList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionListProps); } /** * DaemonSet represents the configuration of a daemon set. * * @schema io.k8s.api.apps.v1.DaemonSet */ export declare class KubeDaemonSet extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DaemonSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DaemonSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeDaemonSetProps): any; /** * Defines a "io.k8s.api.apps.v1.DaemonSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeDaemonSetProps); } /** * DaemonSetList is a collection of daemon sets. * * @schema io.k8s.api.apps.v1.DaemonSetList */ export declare class KubeDaemonSetList extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DaemonSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DaemonSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeDaemonSetListProps): any; /** * Defines a "io.k8s.api.apps.v1.DaemonSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeDaemonSetListProps); } /** * Deployment enables declarative updates for Pods and ReplicaSets. * * @schema io.k8s.api.apps.v1.Deployment */ export declare class KubeDeployment extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.Deployment" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.Deployment". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeDeploymentProps): any; /** * Defines a "io.k8s.api.apps.v1.Deployment" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeDeploymentProps); } /** * DeploymentList is a list of Deployments. * * @schema io.k8s.api.apps.v1.DeploymentList */ export declare class KubeDeploymentList extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.DeploymentList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.DeploymentList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeDeploymentListProps): any; /** * Defines a "io.k8s.api.apps.v1.DeploymentList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeDeploymentListProps); } /** * ReplicaSet ensures that a specified number of pod replicas are running at any given time. * * @schema io.k8s.api.apps.v1.ReplicaSet */ export declare class KubeReplicaSet extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ReplicaSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ReplicaSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeReplicaSetProps): any; /** * Defines a "io.k8s.api.apps.v1.ReplicaSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeReplicaSetProps); } /** * ReplicaSetList is a collection of ReplicaSets. * * @schema io.k8s.api.apps.v1.ReplicaSetList */ export declare class KubeReplicaSetList extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.ReplicaSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.ReplicaSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeReplicaSetListProps): any; /** * Defines a "io.k8s.api.apps.v1.ReplicaSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeReplicaSetListProps); } /** * StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * @schema io.k8s.api.apps.v1.StatefulSet */ export declare class KubeStatefulSet extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.StatefulSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.StatefulSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeStatefulSetProps): any; /** * Defines a "io.k8s.api.apps.v1.StatefulSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeStatefulSetProps); } /** * StatefulSetList is a collection of StatefulSets. * * @schema io.k8s.api.apps.v1.StatefulSetList */ export declare class KubeStatefulSetList extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1.StatefulSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1.StatefulSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeStatefulSetListProps): any; /** * Defines a "io.k8s.api.apps.v1.StatefulSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeStatefulSetListProps); } /** * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. * * @schema io.k8s.api.apps.v1beta1.ControllerRevision */ export declare class KubeControllerRevisionV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.ControllerRevision" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.ControllerRevision". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionV1Beta1Props): any; /** * Defines a "io.k8s.api.apps.v1beta1.ControllerRevision" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionV1Beta1Props); } /** * ControllerRevisionList is a resource containing a list of ControllerRevision objects. * * @schema io.k8s.api.apps.v1beta1.ControllerRevisionList */ export declare class KubeControllerRevisionListV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.ControllerRevisionList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.ControllerRevisionList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionListV1Beta1Props): any; /** * Defines a "io.k8s.api.apps.v1beta1.ControllerRevisionList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionListV1Beta1Props); } /** * DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. * * @schema io.k8s.api.extensions.v1beta1.Deployment */ export declare class KubeDeploymentV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.Deployment" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.Deployment". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeDeploymentV1Beta1Props): any; /** * Defines a "io.k8s.api.extensions.v1beta1.Deployment" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeDeploymentV1Beta1Props); } /** * DeploymentList is a list of Deployments. * * @schema io.k8s.api.extensions.v1beta1.DeploymentList */ export declare class KubeDeploymentListV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.DeploymentList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.DeploymentList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeDeploymentListV1Beta1Props): any; /** * Defines a "io.k8s.api.extensions.v1beta1.DeploymentList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeDeploymentListV1Beta1Props); } /** * represents a scaling request for a resource. * * @schema io.k8s.api.extensions.v1beta1.Scale */ export declare class KubeScaleV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.extensions.v1beta1.Scale" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.extensions.v1beta1.Scale". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeScaleV1Beta1Props): any; /** * Defines a "io.k8s.api.extensions.v1beta1.Scale" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeScaleV1Beta1Props); } /** * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * @schema io.k8s.api.apps.v1beta1.StatefulSet */ export declare class KubeStatefulSetV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.StatefulSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.StatefulSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeStatefulSetV1Beta1Props): any; /** * Defines a "io.k8s.api.apps.v1beta1.StatefulSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeStatefulSetV1Beta1Props); } /** * StatefulSetList is a collection of StatefulSets. * * @schema io.k8s.api.apps.v1beta1.StatefulSetList */ export declare class KubeStatefulSetListV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta1.StatefulSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta1.StatefulSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeStatefulSetListV1Beta1Props): any; /** * Defines a "io.k8s.api.apps.v1beta1.StatefulSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeStatefulSetListV1Beta1Props); } /** * DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers. * * @schema io.k8s.api.apps.v1beta2.ControllerRevision */ export declare class KubeControllerRevisionV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ControllerRevision" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ControllerRevision". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.ControllerRevision" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionV1Beta2Props); } /** * ControllerRevisionList is a resource containing a list of ControllerRevision objects. * * @schema io.k8s.api.apps.v1beta2.ControllerRevisionList */ export declare class KubeControllerRevisionListV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ControllerRevisionList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ControllerRevisionList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeControllerRevisionListV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.ControllerRevisionList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeControllerRevisionListV1Beta2Props); } /** * DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set. * * @schema io.k8s.api.apps.v1beta2.DaemonSet */ export declare class KubeDaemonSetV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DaemonSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DaemonSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeDaemonSetV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.DaemonSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeDaemonSetV1Beta2Props); } /** * DaemonSetList is a collection of daemon sets. * * @schema io.k8s.api.apps.v1beta2.DaemonSetList */ export declare class KubeDaemonSetListV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DaemonSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DaemonSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeDaemonSetListV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.DaemonSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeDaemonSetListV1Beta2Props); } /** * DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets. * * @schema io.k8s.api.apps.v1beta2.Deployment */ export declare class KubeDeploymentV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.Deployment" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.Deployment". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeDeploymentV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.Deployment" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeDeploymentV1Beta2Props); } /** * DeploymentList is a list of Deployments. * * @schema io.k8s.api.apps.v1beta2.DeploymentList */ export declare class KubeDeploymentListV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.DeploymentList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.DeploymentList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeDeploymentListV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.DeploymentList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeDeploymentListV1Beta2Props); } /** * DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time. * * @schema io.k8s.api.apps.v1beta2.ReplicaSet */ export declare class KubeReplicaSetV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ReplicaSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ReplicaSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeReplicaSetV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.ReplicaSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeReplicaSetV1Beta2Props); } /** * ReplicaSetList is a collection of ReplicaSets. * * @schema io.k8s.api.apps.v1beta2.ReplicaSetList */ export declare class KubeReplicaSetListV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.ReplicaSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.ReplicaSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeReplicaSetListV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.ReplicaSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeReplicaSetListV1Beta2Props); } /** * Scale represents a scaling request for a resource. * * @schema io.k8s.api.apps.v1beta2.Scale */ export declare class KubeScaleV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.Scale" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.Scale". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeScaleV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.Scale" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeScaleV1Beta2Props); } /** * DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity. * * @schema io.k8s.api.apps.v1beta2.StatefulSet */ export declare class KubeStatefulSetV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.StatefulSet" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.StatefulSet". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeStatefulSetV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.StatefulSet" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeStatefulSetV1Beta2Props); } /** * StatefulSetList is a collection of StatefulSets. * * @schema io.k8s.api.apps.v1beta2.StatefulSetList */ export declare class KubeStatefulSetListV1Beta2 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.apps.v1beta2.StatefulSetList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.apps.v1beta2.StatefulSetList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeStatefulSetListV1Beta2Props): any; /** * Defines a "io.k8s.api.apps.v1beta2.StatefulSetList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeStatefulSetListV1Beta2Props); } /** * AuditSink represents a cluster level audit sink * * @schema io.k8s.api.auditregistration.v1alpha1.AuditSink */ export declare class KubeAuditSinkV1Alpha1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.auditregistration.v1alpha1.AuditSink" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.auditregistration.v1alpha1.AuditSink". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props?: KubeAuditSinkV1Alpha1Props): any; /** * Defines a "io.k8s.api.auditregistration.v1alpha1.AuditSink" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props?: KubeAuditSinkV1Alpha1Props); } /** * AuditSinkList is a list of AuditSink items. * * @schema io.k8s.api.auditregistration.v1alpha1.AuditSinkList */ export declare class KubeAuditSinkListV1Alpha1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.auditregistration.v1alpha1.AuditSinkList" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.auditregistration.v1alpha1.AuditSinkList". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeAuditSinkListV1Alpha1Props): any; /** * Defines a "io.k8s.api.auditregistration.v1alpha1.AuditSinkList" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeAuditSinkListV1Alpha1Props); } /** * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. * * @schema io.k8s.api.authentication.v1.TokenReview */ export declare class KubeTokenReview extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authentication.v1.TokenReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authentication.v1.TokenReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeTokenReviewProps): any; /** * Defines a "io.k8s.api.authentication.v1.TokenReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeTokenReviewProps); } /** * TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver. * * @schema io.k8s.api.authentication.v1beta1.TokenReview */ export declare class KubeTokenReviewV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authentication.v1beta1.TokenReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authentication.v1beta1.TokenReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeTokenReviewV1Beta1Props): any; /** * Defines a "io.k8s.api.authentication.v1beta1.TokenReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeTokenReviewV1Beta1Props); } /** * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. * * @schema io.k8s.api.authorization.v1.LocalSubjectAccessReview */ export declare class KubeLocalSubjectAccessReview extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.LocalSubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.LocalSubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeLocalSubjectAccessReviewProps): any; /** * Defines a "io.k8s.api.authorization.v1.LocalSubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeLocalSubjectAccessReviewProps); } /** * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action * * @schema io.k8s.api.authorization.v1.SelfSubjectAccessReview */ export declare class KubeSelfSubjectAccessReview extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SelfSubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SelfSubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSelfSubjectAccessReviewProps): any; /** * Defines a "io.k8s.api.authorization.v1.SelfSubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSelfSubjectAccessReviewProps); } /** * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. * * @schema io.k8s.api.authorization.v1.SelfSubjectRulesReview */ export declare class KubeSelfSubjectRulesReview extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SelfSubjectRulesReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SelfSubjectRulesReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSelfSubjectRulesReviewProps): any; /** * Defines a "io.k8s.api.authorization.v1.SelfSubjectRulesReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSelfSubjectRulesReviewProps); } /** * SubjectAccessReview checks whether or not a user or group can perform an action. * * @schema io.k8s.api.authorization.v1.SubjectAccessReview */ export declare class KubeSubjectAccessReview extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1.SubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1.SubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSubjectAccessReviewProps): any; /** * Defines a "io.k8s.api.authorization.v1.SubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSubjectAccessReviewProps); } /** * LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking. * * @schema io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview */ export declare class KubeLocalSubjectAccessReviewV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeLocalSubjectAccessReviewV1Beta1Props): any; /** * Defines a "io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeLocalSubjectAccessReviewV1Beta1Props); } /** * SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action * * @schema io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview */ export declare class KubeSelfSubjectAccessReviewV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSelfSubjectAccessReviewV1Beta1Props): any; /** * Defines a "io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSelfSubjectAccessReviewV1Beta1Props); } /** * SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server. * * @schema io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview */ export declare class KubeSelfSubjectRulesReviewV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSelfSubjectRulesReviewV1Beta1Props): any; /** * Defines a "io.k8s.api.authorization.v1beta1.SelfSubjectRulesReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSelfSubjectRulesReviewV1Beta1Props); } /** * SubjectAccessReview checks whether or not a user or group can perform an action. * * @schema io.k8s.api.authorization.v1beta1.SubjectAccessReview */ export declare class KubeSubjectAccessReviewV1Beta1 extends ApiObject { /** * Returns the apiVersion and kind for "io.k8s.api.authorization.v1beta1.SubjectAccessReview" */ static readonly GVK: GroupVersionKind; /** * Renders a Kubernetes manifest for "io.k8s.api.authorization.v1beta1.SubjectAccessReview". * * This can be used to inline resource manifests inside other objects (e.g. as templates). * * @param props initialization props */ static manifest(props: KubeSubjectAccessReviewV1Beta1Props): any; /** * Defines a "io.k8s.api.authorization.v1beta1.SubjectAccessReview" API object * @param scope the scope in which to define this object * @param id a scope-local name for the object * @param props initialization props */ constructor(scope: Construct, id: string, props: KubeSubjectAccessReviewV1Beta1Props); } /** * configuration of a horizontal pod autoscaler. * * @schema io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler */ export declare class KubeHorizontalPodAutoscaler extends A