kubernetes.apiextensions.k8s.io/v1.CustomResourceDefinition
CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.
Create CustomResourceDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomResourceDefinition(name: string, args: CustomResourceDefinition, opts?: CustomResourceOptions);@overload
def CustomResourceDefinition(resource_name: str,
                             args: CustomResourceDefinitionInitArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def CustomResourceDefinition(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             spec: Optional[CustomResourceDefinitionSpecArgs] = None,
                             metadata: Optional[_meta.v1.ObjectMetaArgs] = None)func NewCustomResourceDefinition(ctx *Context, name string, args CustomResourceDefinitionArgs, opts ...ResourceOption) (*CustomResourceDefinition, error)public CustomResourceDefinition(string name, CustomResourceDefinitionArgs args, CustomResourceOptions? opts = null)
public CustomResourceDefinition(String name, CustomResourceDefinitionArgs args)
public CustomResourceDefinition(String name, CustomResourceDefinitionArgs args, CustomResourceOptions options)
type: kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CustomResourceDefinition
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CustomResourceDefinitionInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CustomResourceDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomResourceDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomResourceDefinitionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var customResourceDefinitionResource = new Kubernetes.ApiExtensions.V1.CustomResourceDefinition("customResourceDefinitionResource", new()
{
    Spec = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceDefinitionSpecArgs
    {
        Group = "string",
        Names = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceDefinitionNamesArgs
        {
            Kind = "string",
            Plural = "string",
            Categories = new[]
            {
                "string",
            },
            ListKind = "string",
            ShortNames = new[]
            {
                "string",
            },
            Singular = "string",
        },
        Scope = "string",
        Versions = new[]
        {
            new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceDefinitionVersionArgs
            {
                Name = "string",
                Served = false,
                Storage = false,
                AdditionalPrinterColumns = new[]
                {
                    new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceColumnDefinitionArgs
                    {
                        JsonPath = "string",
                        Name = "string",
                        Type = "string",
                        Description = "string",
                        Format = "string",
                        Priority = 0,
                    },
                },
                Deprecated = false,
                DeprecationWarning = "string",
                Schema = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceValidationArgs
                {
                    OpenAPIV3Schema = new Kubernetes.Types.Inputs.ApiExtensions.V1.JSONSchemaPropsArgs
                    {
                        Ref = "string",
                        Schema = "string",
                        AdditionalItems = false,
                        AdditionalProperties = false,
                        AllOf = new[]
                        {
                            jsonschemaProps,
                        },
                        AnyOf = new[]
                        {
                            jsonschemaProps,
                        },
                        Default = "{}",
                        Definitions = 
                        {
                            { "string", jsonschemaProps },
                        },
                        Dependencies = 
                        {
                            { "string", null },
                        },
                        Description = "string",
                        Enum = new[]
                        {
                            "{}",
                        },
                        Example = "{}",
                        ExclusiveMaximum = false,
                        ExclusiveMinimum = false,
                        ExternalDocs = new Kubernetes.Types.Inputs.ApiExtensions.V1.ExternalDocumentationArgs
                        {
                            Description = "string",
                            Url = "string",
                        },
                        Format = "string",
                        Id = "string",
                        Items = null,
                        MaxItems = 0,
                        MaxLength = 0,
                        MaxProperties = 0,
                        Maximum = 0,
                        MinItems = 0,
                        MinLength = 0,
                        MinProperties = 0,
                        Minimum = 0,
                        MultipleOf = 0,
                        Not = jsonschemaProps,
                        Nullable = false,
                        OneOf = new[]
                        {
                            jsonschemaProps,
                        },
                        Pattern = "string",
                        PatternProperties = 
                        {
                            { "string", jsonschemaProps },
                        },
                        Properties = 
                        {
                            { "string", jsonschemaProps },
                        },
                        Required = new[]
                        {
                            "string",
                        },
                        Title = "string",
                        Type = "string",
                        UniqueItems = false,
                        X_kubernetes_embedded_resource = false,
                        X_kubernetes_int_or_string = false,
                        X_kubernetes_list_map_keys = new[]
                        {
                            "string",
                        },
                        X_kubernetes_list_type = "string",
                        X_kubernetes_map_type = "string",
                        X_kubernetes_preserve_unknown_fields = false,
                        X_kubernetes_validations = new[]
                        {
                            new Kubernetes.Types.Inputs.ApiExtensions.V1.ValidationRuleArgs
                            {
                                Rule = "string",
                                FieldPath = "string",
                                Message = "string",
                                MessageExpression = "string",
                                OptionalOldSelf = false,
                                Reason = "string",
                            },
                        },
                    },
                },
                SelectableFields = new[]
                {
                    new Kubernetes.Types.Inputs.ApiExtensions.V1.SelectableFieldArgs
                    {
                        JsonPath = "string",
                    },
                },
                Subresources = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceSubresourcesArgs
                {
                    Scale = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceSubresourceScaleArgs
                    {
                        SpecReplicasPath = "string",
                        StatusReplicasPath = "string",
                        LabelSelectorPath = "string",
                    },
                    Status = "{}",
                },
            },
        },
        Conversion = new Kubernetes.Types.Inputs.ApiExtensions.V1.CustomResourceConversionArgs
        {
            Strategy = "string",
            Webhook = new Kubernetes.Types.Inputs.ApiExtensions.V1.WebhookConversionArgs
            {
                ConversionReviewVersions = new[]
                {
                    "string",
                },
                ClientConfig = new Kubernetes.Types.Inputs.ApiExtensions.V1.WebhookClientConfigArgs
                {
                    CaBundle = "string",
                    Service = new Kubernetes.Types.Inputs.ApiExtensions.V1.ServiceReferenceArgs
                    {
                        Name = "string",
                        Namespace = "string",
                        Path = "string",
                        Port = 0,
                    },
                    Url = "string",
                },
            },
        },
        PreserveUnknownFields = false,
    },
    ApiVersion = "string",
    Kind = "string",
    Metadata = new Kubernetes.Types.Inputs.Meta.V1.ObjectMetaArgs
    {
        Annotations = 
        {
            { "string", "string" },
        },
        ClusterName = "string",
        CreationTimestamp = "string",
        DeletionGracePeriodSeconds = 0,
        DeletionTimestamp = "string",
        Finalizers = new[]
        {
            "string",
        },
        GenerateName = "string",
        Generation = 0,
        Labels = 
        {
            { "string", "string" },
        },
        ManagedFields = new[]
        {
            new Kubernetes.Types.Inputs.Meta.V1.ManagedFieldsEntryArgs
            {
                ApiVersion = "string",
                FieldsType = "string",
                FieldsV1 = "{}",
                Manager = "string",
                Operation = "string",
                Subresource = "string",
                Time = "string",
            },
        },
        Name = "string",
        Namespace = "string",
        OwnerReferences = new[]
        {
            new Kubernetes.Types.Inputs.Meta.V1.OwnerReferenceArgs
            {
                ApiVersion = "string",
                Kind = "string",
                Name = "string",
                Uid = "string",
                BlockOwnerDeletion = false,
                Controller = false,
            },
        },
        ResourceVersion = "string",
        SelfLink = "string",
        Uid = "string",
    },
});
example, err := apiextensionsv1.NewCustomResourceDefinition(ctx, "customResourceDefinitionResource", &apiextensionsv1.CustomResourceDefinitionArgs{
	Spec: &apiextensionsv1.CustomResourceDefinitionSpecArgs{
		Group: pulumi.String("string"),
		Names: &apiextensionsv1.CustomResourceDefinitionNamesArgs{
			Kind:   pulumi.String("string"),
			Plural: pulumi.String("string"),
			Categories: pulumi.StringArray{
				pulumi.String("string"),
			},
			ListKind: pulumi.String("string"),
			ShortNames: pulumi.StringArray{
				pulumi.String("string"),
			},
			Singular: pulumi.String("string"),
		},
		Scope: pulumi.String("string"),
		Versions: apiextensionsv1.CustomResourceDefinitionVersionArray{
			&apiextensionsv1.CustomResourceDefinitionVersionArgs{
				Name:    pulumi.String("string"),
				Served:  pulumi.Bool(false),
				Storage: pulumi.Bool(false),
				AdditionalPrinterColumns: apiextensionsv1.CustomResourceColumnDefinitionArray{
					&apiextensionsv1.CustomResourceColumnDefinitionArgs{
						JsonPath:    pulumi.String("string"),
						Name:        pulumi.String("string"),
						Type:        pulumi.String("string"),
						Description: pulumi.String("string"),
						Format:      pulumi.String("string"),
						Priority:    pulumi.Int(0),
					},
				},
				Deprecated:         pulumi.Bool(false),
				DeprecationWarning: pulumi.String("string"),
				Schema: &apiextensionsv1.CustomResourceValidationArgs{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaPropsArgs{
						Ref:                  pulumi.String("string"),
						Schema:               pulumi.String("string"),
						AdditionalItems:      pulumi.Any(false),
						AdditionalProperties: pulumi.Any(false),
						AllOf: apiextensionsv1.JSONSchemaPropsArray{
							jsonschemaProps,
						},
						AnyOf: apiextensionsv1.JSONSchemaPropsArray{
							jsonschemaProps,
						},
						Default: pulumi.Any("{}"),
						Definitions: apiextensionsv1.JSONSchemaPropsMap{
							"string": pulumi.Any(jsonschemaProps),
						},
						Dependencies: pulumi.Map{
							"string": nil,
						},
						Description: pulumi.String("string"),
						Enum: pulumi.Array{
							pulumi.Any("{}"),
						},
						Example:          pulumi.Any("{}"),
						ExclusiveMaximum: pulumi.Bool(false),
						ExclusiveMinimum: pulumi.Bool(false),
						ExternalDocs: &apiextensionsv1.ExternalDocumentationArgs{
							Description: pulumi.String("string"),
							Url:         pulumi.String("string"),
						},
						Format:        pulumi.String("string"),
						Id:            pulumi.String("string"),
						Items:         nil,
						MaxItems:      pulumi.Int(0),
						MaxLength:     pulumi.Int(0),
						MaxProperties: pulumi.Int(0),
						Maximum:       pulumi.Float64(0),
						MinItems:      pulumi.Int(0),
						MinLength:     pulumi.Int(0),
						MinProperties: pulumi.Int(0),
						Minimum:       pulumi.Float64(0),
						MultipleOf:    pulumi.Float64(0),
						Not:           pulumi.Any(jsonschemaProps),
						Nullable:      pulumi.Bool(false),
						OneOf: apiextensionsv1.JSONSchemaPropsArray{
							jsonschemaProps,
						},
						Pattern: pulumi.String("string"),
						PatternProperties: apiextensionsv1.JSONSchemaPropsMap{
							"string": pulumi.Any(jsonschemaProps),
						},
						Properties: apiextensionsv1.JSONSchemaPropsMap{
							"string": pulumi.Any(jsonschemaProps),
						},
						Required: pulumi.StringArray{
							pulumi.String("string"),
						},
						Title:                          pulumi.String("string"),
						Type:                           pulumi.String("string"),
						UniqueItems:                    pulumi.Bool(false),
						X_kubernetes_embedded_resource: pulumi.Bool(false),
						X_kubernetes_int_or_string:     pulumi.Bool(false),
						X_kubernetes_list_map_keys: pulumi.StringArray{
							pulumi.String("string"),
						},
						X_kubernetes_list_type:               pulumi.String("string"),
						X_kubernetes_map_type:                pulumi.String("string"),
						X_kubernetes_preserve_unknown_fields: pulumi.Bool(false),
						X_kubernetes_validations: apiextensionsv1.ValidationRuleArray{
							&apiextensionsv1.ValidationRuleArgs{
								Rule:              pulumi.String("string"),
								FieldPath:         pulumi.String("string"),
								Message:           pulumi.String("string"),
								MessageExpression: pulumi.String("string"),
								OptionalOldSelf:   pulumi.Bool(false),
								Reason:            pulumi.String("string"),
							},
						},
					},
				},
				SelectableFields: apiextensionsv1.SelectableFieldArray{
					&apiextensionsv1.SelectableFieldArgs{
						JsonPath: pulumi.String("string"),
					},
				},
				Subresources: &apiextensionsv1.CustomResourceSubresourcesArgs{
					Scale: &apiextensionsv1.CustomResourceSubresourceScaleArgs{
						SpecReplicasPath:   pulumi.String("string"),
						StatusReplicasPath: pulumi.String("string"),
						LabelSelectorPath:  pulumi.String("string"),
					},
					Status: pulumi.Any("{}"),
				},
			},
		},
		Conversion: &apiextensionsv1.CustomResourceConversionArgs{
			Strategy: pulumi.String("string"),
			Webhook: &apiextensionsv1.WebhookConversionArgs{
				ConversionReviewVersions: pulumi.StringArray{
					pulumi.String("string"),
				},
				ClientConfig: &apiextensionsv1.WebhookClientConfigArgs{
					CaBundle: pulumi.String("string"),
					Service: &apiextensionsv1.ServiceReferenceArgs{
						Name:      pulumi.String("string"),
						Namespace: pulumi.String("string"),
						Path:      pulumi.String("string"),
						Port:      pulumi.Int(0),
					},
					Url: pulumi.String("string"),
				},
			},
		},
		PreserveUnknownFields: pulumi.Bool(false),
	},
	ApiVersion: pulumi.String("string"),
	Kind:       pulumi.String("string"),
	Metadata: &metav1.ObjectMetaArgs{
		Annotations: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		ClusterName:                pulumi.String("string"),
		CreationTimestamp:          pulumi.String("string"),
		DeletionGracePeriodSeconds: pulumi.Int(0),
		DeletionTimestamp:          pulumi.String("string"),
		Finalizers: pulumi.StringArray{
			pulumi.String("string"),
		},
		GenerateName: pulumi.String("string"),
		Generation:   pulumi.Int(0),
		Labels: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		ManagedFields: metav1.ManagedFieldsEntryArray{
			&metav1.ManagedFieldsEntryArgs{
				ApiVersion:  pulumi.String("string"),
				FieldsType:  pulumi.String("string"),
				FieldsV1:    pulumi.Any("{}"),
				Manager:     pulumi.String("string"),
				Operation:   pulumi.String("string"),
				Subresource: pulumi.String("string"),
				Time:        pulumi.String("string"),
			},
		},
		Name:      pulumi.String("string"),
		Namespace: pulumi.String("string"),
		OwnerReferences: metav1.OwnerReferenceArray{
			&metav1.OwnerReferenceArgs{
				ApiVersion:         pulumi.String("string"),
				Kind:               pulumi.String("string"),
				Name:               pulumi.String("string"),
				Uid:                pulumi.String("string"),
				BlockOwnerDeletion: pulumi.Bool(false),
				Controller:         pulumi.Bool(false),
			},
		},
		ResourceVersion: pulumi.String("string"),
		SelfLink:        pulumi.String("string"),
		Uid:             pulumi.String("string"),
	},
})
var customResourceDefinitionResource = new com.pulumi.kubernetes.apiextensions.k8s.io_v1.CustomResourceDefinition("customResourceDefinitionResource", com.pulumi.kubernetes.apiextensions.k8s.io_v1.CustomResourceDefinitionArgs.builder()
    .spec(CustomResourceDefinitionSpecArgs.builder()
        .group("string")
        .names(CustomResourceDefinitionNamesArgs.builder()
            .kind("string")
            .plural("string")
            .categories("string")
            .listKind("string")
            .shortNames("string")
            .singular("string")
            .build())
        .scope("string")
        .versions(Map.ofEntries(
            Map.entry("name", "string"),
            Map.entry("served", false),
            Map.entry("storage", false),
            Map.entry("additionalPrinterColumns", CustomResourceColumnDefinitionArgs.builder()
                .jsonPath("string")
                .name("string")
                .type("string")
                .description("string")
                .format("string")
                .priority(0)
                .build()),
            Map.entry("deprecated", false),
            Map.entry("deprecationWarning", "string"),
            Map.entry("schema", CustomResourceValidationArgs.builder()
                .openAPIV3Schema(Map.ofEntries(
                    Map.entry("$ref", "string"),
                    Map.entry("$schema", "string"),
                    Map.entry("additionalItems", false),
                    Map.entry("additionalProperties", false),
                    Map.entry("allOf", jsonschemaProps),
                    Map.entry("anyOf", jsonschemaProps),
                    Map.entry("default", "{}"),
                    Map.entry("definitions", Map.of("string", jsonschemaProps)),
                    Map.entry("dependencies", Map.of("string", null)),
                    Map.entry("description", "string"),
                    Map.entry("enum", "{}"),
                    Map.entry("example", "{}"),
                    Map.entry("exclusiveMaximum", false),
                    Map.entry("exclusiveMinimum", false),
                    Map.entry("externalDocs", ExternalDocumentationArgs.builder()
                        .description("string")
                        .url("string")
                        .build()),
                    Map.entry("format", "string"),
                    Map.entry("id", "string"),
                    Map.entry("items", null),
                    Map.entry("maxItems", 0),
                    Map.entry("maxLength", 0),
                    Map.entry("maxProperties", 0),
                    Map.entry("maximum", 0.0),
                    Map.entry("minItems", 0),
                    Map.entry("minLength", 0),
                    Map.entry("minProperties", 0),
                    Map.entry("minimum", 0.0),
                    Map.entry("multipleOf", 0.0),
                    Map.entry("not", jsonschemaProps),
                    Map.entry("nullable", false),
                    Map.entry("oneOf", jsonschemaProps),
                    Map.entry("pattern", "string"),
                    Map.entry("patternProperties", Map.of("string", jsonschemaProps)),
                    Map.entry("properties", Map.of("string", jsonschemaProps)),
                    Map.entry("required", "string"),
                    Map.entry("title", "string"),
                    Map.entry("type", "string"),
                    Map.entry("uniqueItems", false),
                    Map.entry("x_kubernetes_embedded_resource", false),
                    Map.entry("x_kubernetes_int_or_string", false),
                    Map.entry("x_kubernetes_list_map_keys", "string"),
                    Map.entry("x_kubernetes_list_type", "string"),
                    Map.entry("x_kubernetes_map_type", "string"),
                    Map.entry("x_kubernetes_preserve_unknown_fields", false),
                    Map.entry("x_kubernetes_validations", ValidationRuleArgs.builder()
                        .rule("string")
                        .fieldPath("string")
                        .message("string")
                        .messageExpression("string")
                        .optionalOldSelf(false)
                        .reason("string")
                        .build())
                ))
                .build()),
            Map.entry("selectableFields", SelectableFieldArgs.builder()
                .jsonPath("string")
                .build()),
            Map.entry("subresources", CustomResourceSubresourcesArgs.builder()
                .scale(CustomResourceSubresourceScaleArgs.builder()
                    .specReplicasPath("string")
                    .statusReplicasPath("string")
                    .labelSelectorPath("string")
                    .build())
                .status("{}")
                .build())
        ))
        .conversion(CustomResourceConversionArgs.builder()
            .strategy("string")
            .webhook(WebhookConversionArgs.builder()
                .conversionReviewVersions("string")
                .clientConfig(WebhookClientConfigArgs.builder()
                    .caBundle("string")
                    .service(ServiceReferenceArgs.builder()
                        .name("string")
                        .namespace("string")
                        .path("string")
                        .port(0)
                        .build())
                    .url("string")
                    .build())
                .build())
            .build())
        .preserveUnknownFields(false)
        .build())
    .apiVersion("string")
    .kind("string")
    .metadata(ObjectMetaArgs.builder()
        .annotations(Map.of("string", "string"))
        .clusterName("string")
        .creationTimestamp("string")
        .deletionGracePeriodSeconds(0)
        .deletionTimestamp("string")
        .finalizers("string")
        .generateName("string")
        .generation(0)
        .labels(Map.of("string", "string"))
        .managedFields(ManagedFieldsEntryArgs.builder()
            .apiVersion("string")
            .fieldsType("string")
            .fieldsV1("{}")
            .manager("string")
            .operation("string")
            .subresource("string")
            .time("string")
            .build())
        .name("string")
        .namespace("string")
        .ownerReferences(OwnerReferenceArgs.builder()
            .apiVersion("string")
            .kind("string")
            .name("string")
            .uid("string")
            .blockOwnerDeletion(false)
            .controller(false)
            .build())
        .resourceVersion("string")
        .selfLink("string")
        .uid("string")
        .build())
    .build());
custom_resource_definition_resource = kubernetes.apiextensions.v1.CustomResourceDefinition("customResourceDefinitionResource",
    spec={
        "group": "string",
        "names": {
            "kind": "string",
            "plural": "string",
            "categories": ["string"],
            "list_kind": "string",
            "short_names": ["string"],
            "singular": "string",
        },
        "scope": "string",
        "versions": [{
            "name": "string",
            "served": False,
            "storage": False,
            "additional_printer_columns": [{
                "json_path": "string",
                "name": "string",
                "type": "string",
                "description": "string",
                "format": "string",
                "priority": 0,
            }],
            "deprecated": False,
            "deprecation_warning": "string",
            "schema": {
                "open_apiv3_schema": {
                    "_ref": "string",
                    "_schema": "string",
                    "additional_items": False,
                    "additional_properties": False,
                    "all_of": [jsonschema_props],
                    "any_of": [jsonschema_props],
                    "default": "{}",
                    "definitions": {
                        "string": jsonschema_props,
                    },
                    "dependencies": {
                        "string": None,
                    },
                    "description": "string",
                    "enum": ["{}"],
                    "example": "{}",
                    "exclusive_maximum": False,
                    "exclusive_minimum": False,
                    "external_docs": {
                        "description": "string",
                        "url": "string",
                    },
                    "format": "string",
                    "id": "string",
                    "items": None,
                    "max_items": 0,
                    "max_length": 0,
                    "max_properties": 0,
                    "maximum": 0,
                    "min_items": 0,
                    "min_length": 0,
                    "min_properties": 0,
                    "minimum": 0,
                    "multiple_of": 0,
                    "not_": jsonschema_props,
                    "nullable": False,
                    "one_of": [jsonschema_props],
                    "pattern": "string",
                    "pattern_properties": {
                        "string": jsonschema_props,
                    },
                    "properties": {
                        "string": jsonschema_props,
                    },
                    "required": ["string"],
                    "title": "string",
                    "type": "string",
                    "unique_items": False,
                    "x_kubernetes_embedded_resource": False,
                    "x_kubernetes_int_or_string": False,
                    "x_kubernetes_list_map_keys": ["string"],
                    "x_kubernetes_list_type": "string",
                    "x_kubernetes_map_type": "string",
                    "x_kubernetes_preserve_unknown_fields": False,
                    "x_kubernetes_validations": [{
                        "rule": "string",
                        "field_path": "string",
                        "message": "string",
                        "message_expression": "string",
                        "optional_old_self": False,
                        "reason": "string",
                    }],
                },
            },
            "selectable_fields": [{
                "json_path": "string",
            }],
            "subresources": {
                "scale": {
                    "spec_replicas_path": "string",
                    "status_replicas_path": "string",
                    "label_selector_path": "string",
                },
                "status": "{}",
            },
        }],
        "conversion": {
            "strategy": "string",
            "webhook": {
                "conversion_review_versions": ["string"],
                "client_config": {
                    "ca_bundle": "string",
                    "service": {
                        "name": "string",
                        "namespace": "string",
                        "path": "string",
                        "port": 0,
                    },
                    "url": "string",
                },
            },
        },
        "preserve_unknown_fields": False,
    },
    api_version="string",
    kind="string",
    metadata={
        "annotations": {
            "string": "string",
        },
        "cluster_name": "string",
        "creation_timestamp": "string",
        "deletion_grace_period_seconds": 0,
        "deletion_timestamp": "string",
        "finalizers": ["string"],
        "generate_name": "string",
        "generation": 0,
        "labels": {
            "string": "string",
        },
        "managed_fields": [{
            "api_version": "string",
            "fields_type": "string",
            "fields_v1": "{}",
            "manager": "string",
            "operation": "string",
            "subresource": "string",
            "time": "string",
        }],
        "name": "string",
        "namespace": "string",
        "owner_references": [{
            "api_version": "string",
            "kind": "string",
            "name": "string",
            "uid": "string",
            "block_owner_deletion": False,
            "controller": False,
        }],
        "resource_version": "string",
        "self_link": "string",
        "uid": "string",
    })
const customResourceDefinitionResource = new kubernetes.apiextensions.v1.CustomResourceDefinition("customResourceDefinitionResource", {
    spec: {
        group: "string",
        names: {
            kind: "string",
            plural: "string",
            categories: ["string"],
            listKind: "string",
            shortNames: ["string"],
            singular: "string",
        },
        scope: "string",
        versions: [{
            name: "string",
            served: false,
            storage: false,
            additionalPrinterColumns: [{
                jsonPath: "string",
                name: "string",
                type: "string",
                description: "string",
                format: "string",
                priority: 0,
            }],
            deprecated: false,
            deprecationWarning: "string",
            schema: {
                openAPIV3Schema: {
                    $ref: "string",
                    $schema: "string",
                    additionalItems: false,
                    additionalProperties: false,
                    allOf: [jsonschemaProps],
                    anyOf: [jsonschemaProps],
                    "default": "{}",
                    definitions: {
                        string: jsonschemaProps,
                    },
                    dependencies: {
                        string: null,
                    },
                    description: "string",
                    "enum": ["{}"],
                    example: "{}",
                    exclusiveMaximum: false,
                    exclusiveMinimum: false,
                    externalDocs: {
                        description: "string",
                        url: "string",
                    },
                    format: "string",
                    id: "string",
                    items: null,
                    maxItems: 0,
                    maxLength: 0,
                    maxProperties: 0,
                    maximum: 0,
                    minItems: 0,
                    minLength: 0,
                    minProperties: 0,
                    minimum: 0,
                    multipleOf: 0,
                    not: jsonschemaProps,
                    nullable: false,
                    oneOf: [jsonschemaProps],
                    pattern: "string",
                    patternProperties: {
                        string: jsonschemaProps,
                    },
                    properties: {
                        string: jsonschemaProps,
                    },
                    required: ["string"],
                    title: "string",
                    type: "string",
                    uniqueItems: false,
                    x_kubernetes_embedded_resource: false,
                    x_kubernetes_int_or_string: false,
                    x_kubernetes_list_map_keys: ["string"],
                    x_kubernetes_list_type: "string",
                    x_kubernetes_map_type: "string",
                    x_kubernetes_preserve_unknown_fields: false,
                    x_kubernetes_validations: [{
                        rule: "string",
                        fieldPath: "string",
                        message: "string",
                        messageExpression: "string",
                        optionalOldSelf: false,
                        reason: "string",
                    }],
                },
            },
            selectableFields: [{
                jsonPath: "string",
            }],
            subresources: {
                scale: {
                    specReplicasPath: "string",
                    statusReplicasPath: "string",
                    labelSelectorPath: "string",
                },
                status: "{}",
            },
        }],
        conversion: {
            strategy: "string",
            webhook: {
                conversionReviewVersions: ["string"],
                clientConfig: {
                    caBundle: "string",
                    service: {
                        name: "string",
                        namespace: "string",
                        path: "string",
                        port: 0,
                    },
                    url: "string",
                },
            },
        },
        preserveUnknownFields: false,
    },
    apiVersion: "string",
    kind: "string",
    metadata: {
        annotations: {
            string: "string",
        },
        clusterName: "string",
        creationTimestamp: "string",
        deletionGracePeriodSeconds: 0,
        deletionTimestamp: "string",
        finalizers: ["string"],
        generateName: "string",
        generation: 0,
        labels: {
            string: "string",
        },
        managedFields: [{
            apiVersion: "string",
            fieldsType: "string",
            fieldsV1: "{}",
            manager: "string",
            operation: "string",
            subresource: "string",
            time: "string",
        }],
        name: "string",
        namespace: "string",
        ownerReferences: [{
            apiVersion: "string",
            kind: "string",
            name: "string",
            uid: "string",
            blockOwnerDeletion: false,
            controller: false,
        }],
        resourceVersion: "string",
        selfLink: "string",
        uid: "string",
    },
});
type: kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition
properties:
    apiVersion: string
    kind: string
    metadata:
        annotations:
            string: string
        clusterName: string
        creationTimestamp: string
        deletionGracePeriodSeconds: 0
        deletionTimestamp: string
        finalizers:
            - string
        generateName: string
        generation: 0
        labels:
            string: string
        managedFields:
            - apiVersion: string
              fieldsType: string
              fieldsV1: '{}'
              manager: string
              operation: string
              subresource: string
              time: string
        name: string
        namespace: string
        ownerReferences:
            - apiVersion: string
              blockOwnerDeletion: false
              controller: false
              kind: string
              name: string
              uid: string
        resourceVersion: string
        selfLink: string
        uid: string
    spec:
        conversion:
            strategy: string
            webhook:
                clientConfig:
                    caBundle: string
                    service:
                        name: string
                        namespace: string
                        path: string
                        port: 0
                    url: string
                conversionReviewVersions:
                    - string
        group: string
        names:
            categories:
                - string
            kind: string
            listKind: string
            plural: string
            shortNames:
                - string
            singular: string
        preserveUnknownFields: false
        scope: string
        versions:
            - additionalPrinterColumns:
                - description: string
                  format: string
                  jsonPath: string
                  name: string
                  priority: 0
                  type: string
              deprecated: false
              deprecationWarning: string
              name: string
              schema:
                openAPIV3Schema:
                    $ref: string
                    $schema: string
                    additionalItems: false
                    additionalProperties: false
                    allOf:
                        - ${jsonschemaProps}
                    anyOf:
                        - ${jsonschemaProps}
                    default: '{}'
                    definitions:
                        string: ${jsonschemaProps}
                    dependencies:
                        string: null
                    description: string
                    enum:
                        - '{}'
                    example: '{}'
                    exclusiveMaximum: false
                    exclusiveMinimum: false
                    externalDocs:
                        description: string
                        url: string
                    format: string
                    id: string
                    items: null
                    maxItems: 0
                    maxLength: 0
                    maxProperties: 0
                    maximum: 0
                    minItems: 0
                    minLength: 0
                    minProperties: 0
                    minimum: 0
                    multipleOf: 0
                    not: ${jsonschemaProps}
                    nullable: false
                    oneOf:
                        - ${jsonschemaProps}
                    pattern: string
                    patternProperties:
                        string: ${jsonschemaProps}
                    properties:
                        string: ${jsonschemaProps}
                    required:
                        - string
                    title: string
                    type: string
                    uniqueItems: false
                    x_kubernetes_embedded_resource: false
                    x_kubernetes_int_or_string: false
                    x_kubernetes_list_map_keys:
                        - string
                    x_kubernetes_list_type: string
                    x_kubernetes_map_type: string
                    x_kubernetes_preserve_unknown_fields: false
                    x_kubernetes_validations:
                        - fieldPath: string
                          message: string
                          messageExpression: string
                          optionalOldSelf: false
                          reason: string
                          rule: string
              selectableFields:
                - jsonPath: string
              served: false
              storage: false
              subresources:
                scale:
                    labelSelectorPath: string
                    specReplicasPath: string
                    statusReplicasPath: string
                status: '{}'
CustomResourceDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CustomResourceDefinition resource accepts the following input properties:
- Spec
CustomResource Definition Spec 
- spec describes how the user wants the resources to appear
- Metadata
Pulumi.Kubernetes. Meta. V1. Inputs. Object Meta 
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- Spec
CustomResource Definition Spec Args 
- spec describes how the user wants the resources to appear
- Metadata
ObjectMeta Args 
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- spec
CustomResource Definition Spec 
- spec describes how the user wants the resources to appear
- metadata
ObjectMeta 
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- spec
CustomResource Definition Spec 
- spec describes how the user wants the resources to appear
- metadata
meta.v1.Object Meta 
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- spec
CustomResource Definition Spec Args 
- spec describes how the user wants the resources to appear
- metadata
meta.v1.Object Meta Args 
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- spec Property Map
- spec describes how the user wants the resources to appear
- metadata Property Map
- Standard object's metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomResourceDefinition resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Status
CustomResource Definition Status 
- status indicates the actual state of the CustomResourceDefinition
- Id string
- The provider-assigned unique ID for this managed resource.
- Status
CustomResource Definition Status 
- status indicates the actual state of the CustomResourceDefinition
- id String
- The provider-assigned unique ID for this managed resource.
- status
CustomResource Definition Status 
- status indicates the actual state of the CustomResourceDefinition
- id string
- The provider-assigned unique ID for this managed resource.
- status
CustomResource Definition Status 
- status indicates the actual state of the CustomResourceDefinition
- id str
- The provider-assigned unique ID for this managed resource.
- status
CustomResource Definition Status 
- status indicates the actual state of the CustomResourceDefinition
- id String
- The provider-assigned unique ID for this managed resource.
- status Property Map
- status indicates the actual state of the CustomResourceDefinition
Supporting Types
CustomResourceColumnDefinition, CustomResourceColumnDefinitionArgs        
CustomResourceColumnDefinition specifies a column for server side printing.- JsonPath string
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- Name string
- name is a human readable name for the column.
- Type string
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- Description string
- description is a human readable description of this column.
- Format string
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- Priority int
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
- JsonPath string
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- Name string
- name is a human readable name for the column.
- Type string
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- Description string
- description is a human readable description of this column.
- Format string
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- Priority int
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
- jsonPath String
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- name String
- name is a human readable name for the column.
- type String
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- description String
- description is a human readable description of this column.
- format String
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- priority Integer
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
- jsonPath string
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- name string
- name is a human readable name for the column.
- type string
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- description string
- description is a human readable description of this column.
- format string
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- priority number
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
- json_path str
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- name str
- name is a human readable name for the column.
- type str
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- description str
- description is a human readable description of this column.
- format str
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- priority int
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
- jsonPath String
- jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
- name String
- name is a human readable name for the column.
- type String
- type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- description String
- description is a human readable description of this column.
- format String
- format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
- priority Number
- priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
CustomResourceConversion, CustomResourceConversionArgs      
CustomResourceConversion describes how to convert different versions of a CR.- Strategy string
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- Webhook
WebhookConversion 
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
- Strategy string
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- Webhook
WebhookConversion 
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
- strategy String
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- webhook
WebhookConversion 
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
- strategy string
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- webhook
WebhookConversion 
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
- strategy str
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- webhook
WebhookConversion 
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
- strategy String
- strategy specifies how custom resources are converted between versions. Allowed values are: - "None": The converter only change the apiVersion and would not touch any other field in the custom resource. -"Webhook": API Server will call to an external webhook to do the conversion. Additional information is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
- webhook Property Map
- webhook describes how to call the conversion webhook. Required when strategyis set to"Webhook".
CustomResourceDefinitionCondition, CustomResourceDefinitionConditionArgs        
CustomResourceDefinitionCondition contains details for the current condition of this pod.- Status string
- status is the status of the condition. Can be True, False, Unknown.
- Type string
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- LastTransition stringTime 
- lastTransitionTime last time the condition transitioned from one status to another.
- Message string
- message is a human-readable message indicating details about last transition.
- Reason string
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
- Status string
- status is the status of the condition. Can be True, False, Unknown.
- Type string
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- LastTransition stringTime 
- lastTransitionTime last time the condition transitioned from one status to another.
- Message string
- message is a human-readable message indicating details about last transition.
- Reason string
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
- status String
- status is the status of the condition. Can be True, False, Unknown.
- type String
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- lastTransition StringTime 
- lastTransitionTime last time the condition transitioned from one status to another.
- message String
- message is a human-readable message indicating details about last transition.
- reason String
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
- status string
- status is the status of the condition. Can be True, False, Unknown.
- type string
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- lastTransition stringTime 
- lastTransitionTime last time the condition transitioned from one status to another.
- message string
- message is a human-readable message indicating details about last transition.
- reason string
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
- status str
- status is the status of the condition. Can be True, False, Unknown.
- type str
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- last_transition_ strtime 
- lastTransitionTime last time the condition transitioned from one status to another.
- message str
- message is a human-readable message indicating details about last transition.
- reason str
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
- status String
- status is the status of the condition. Can be True, False, Unknown.
- type String
- type is the type of the condition. Types include Established, NamesAccepted and Terminating.
- lastTransition StringTime 
- lastTransitionTime last time the condition transitioned from one status to another.
- message String
- message is a human-readable message indicating details about last transition.
- reason String
- reason is a unique, one-word, CamelCase reason for the condition's last transition.
CustomResourceDefinitionNames, CustomResourceDefinitionNamesArgs        
CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition- Kind string
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- Plural string
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- Categories List<string>
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- ListKind string
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- ShortNames List<string>
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- Singular string
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
- Kind string
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- Plural string
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- Categories []string
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- ListKind string
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- ShortNames []string
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- Singular string
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
- kind String
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- plural String
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- categories List<String>
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- listKind String
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- shortNames List<String>
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- singular String
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
- kind string
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- plural string
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- categories string[]
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- listKind string
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- shortNames string[]
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- singular string
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
- kind str
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- plural str
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- categories Sequence[str]
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- list_kind str
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- short_names Sequence[str]
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- singular str
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
- kind String
- kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kindattribute in API calls.
- plural String
- plural is the plural name of the resource to serve. The custom resources are served under /apis/<group>/<version>/.../<plural>. Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>). Must be all lowercase.
- categories List<String>
- categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.
- listKind String
- listKind is the serialized kind of the list for this resource. Defaults to "kindList".
- shortNames List<String>
- shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>. It must be all lowercase.
- singular String
- singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.
CustomResourceDefinitionSpec, CustomResourceDefinitionSpecArgs        
CustomResourceDefinitionSpec describes how a user wants their resource to appear- Group string
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- Names
CustomResource Definition Names 
- names specify the resource and kind names for the custom resource.
- Scope string
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- Versions
List<CustomResource Definition Version> 
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- Conversion
CustomResource Conversion 
- conversion defines conversion settings for the CRD.
- PreserveUnknown boolFields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
- Group string
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- Names
CustomResource Definition Names 
- names specify the resource and kind names for the custom resource.
- Scope string
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- Versions
[]CustomResource Definition Version 
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- Conversion
CustomResource Conversion 
- conversion defines conversion settings for the CRD.
- PreserveUnknown boolFields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
- group String
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- names
CustomResource Definition Names 
- names specify the resource and kind names for the custom resource.
- scope String
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- versions
List<CustomResource Definition Version> 
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- conversion
CustomResource Conversion 
- conversion defines conversion settings for the CRD.
- preserveUnknown BooleanFields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
- group string
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- names
CustomResource Definition Names 
- names specify the resource and kind names for the custom resource.
- scope string
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- versions
CustomResource Definition Version[] 
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- conversion
CustomResource Conversion 
- conversion defines conversion settings for the CRD.
- preserveUnknown booleanFields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
- group str
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- names
CustomResource Definition Names 
- names specify the resource and kind names for the custom resource.
- scope str
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- versions
Sequence[CustomResource Definition Version] 
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- conversion
CustomResource Conversion 
- conversion defines conversion settings for the CRD.
- preserve_unknown_ boolfields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
- group String
- group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/.... Must match the name of the CustomResourceDefinition (in the form<names.plural>.<group>).
- names Property Map
- names specify the resource and kind names for the custom resource.
- scope String
- scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are ClusterandNamespaced.
- versions List<Property Map>
- versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
- conversion Property Map
- conversion defines conversion settings for the CRD.
- preserveUnknown BooleanFields 
- preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fieldsto true inspec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details.
CustomResourceDefinitionStatus, CustomResourceDefinitionStatusArgs        
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition- AcceptedNames CustomResource Definition Names 
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- StoredVersions List<string>
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- Conditions
List<CustomResource Definition Condition> 
- conditions indicate state for particular aspects of a CustomResourceDefinition
- AcceptedNames CustomResource Definition Names 
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- StoredVersions []string
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- Conditions
[]CustomResource Definition Condition 
- conditions indicate state for particular aspects of a CustomResourceDefinition
- acceptedNames CustomResource Definition Names 
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- storedVersions List<String>
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- conditions
List<CustomResource Definition Condition> 
- conditions indicate state for particular aspects of a CustomResourceDefinition
- acceptedNames CustomResource Definition Names 
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- storedVersions string[]
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- conditions
CustomResource Definition Condition[] 
- conditions indicate state for particular aspects of a CustomResourceDefinition
- accepted_names CustomResource Definition Names 
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- stored_versions Sequence[str]
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- conditions
Sequence[CustomResource Definition Condition] 
- conditions indicate state for particular aspects of a CustomResourceDefinition
- acceptedNames Property Map
- acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec.
- storedVersions List<String>
- storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from spec.versionswhile they exist in this list.
- conditions List<Property Map>
- conditions indicate state for particular aspects of a CustomResourceDefinition
CustomResourceDefinitionVersion, CustomResourceDefinitionVersionArgs        
CustomResourceDefinitionVersion describes a version for CRD.- Name string
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- Served bool
- served is a flag enabling/disabling this version from being served via REST APIs
- Storage bool
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- AdditionalPrinter List<CustomColumns Resource Column Definition> 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- Deprecated bool
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- DeprecationWarning string
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- Schema
CustomResource Validation 
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- SelectableFields List<SelectableField> 
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- Subresources
CustomResource Subresources 
- subresources specify what subresources this version of the defined custom resource have.
- Name string
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- Served bool
- served is a flag enabling/disabling this version from being served via REST APIs
- Storage bool
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- AdditionalPrinter []CustomColumns Resource Column Definition 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- Deprecated bool
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- DeprecationWarning string
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- Schema
CustomResource Validation 
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- SelectableFields []SelectableField 
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- Subresources
CustomResource Subresources 
- subresources specify what subresources this version of the defined custom resource have.
- name String
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- served Boolean
- served is a flag enabling/disabling this version from being served via REST APIs
- storage Boolean
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- additionalPrinter List<CustomColumns Resource Column Definition> 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- deprecated Boolean
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- deprecationWarning String
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- schema
CustomResource Validation 
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- selectableFields List<SelectableField> 
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- subresources
CustomResource Subresources 
- subresources specify what subresources this version of the defined custom resource have.
- name string
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- served boolean
- served is a flag enabling/disabling this version from being served via REST APIs
- storage boolean
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- additionalPrinter CustomColumns Resource Column Definition[] 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- deprecated boolean
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- deprecationWarning string
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- schema
CustomResource Validation 
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- selectableFields SelectableField[] 
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- subresources
CustomResource Subresources 
- subresources specify what subresources this version of the defined custom resource have.
- name str
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- served bool
- served is a flag enabling/disabling this version from being served via REST APIs
- storage bool
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- additional_printer_ Sequence[Customcolumns Resource Column Definition] 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- deprecated bool
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- deprecation_warning str
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- schema
CustomResource Validation 
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- selectable_fields Sequence[SelectableField] 
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- subresources
CustomResource Subresources 
- subresources specify what subresources this version of the defined custom resource have.
- name String
- name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at /apis/<group>/<version>/...ifservedis true.
- served Boolean
- served is a flag enabling/disabling this version from being served via REST APIs
- storage Boolean
- storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.
- additionalPrinter List<Property Map>Columns 
- additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.
- deprecated Boolean
- deprecated indicates this version of the custom resource API is deprecated. When set to true, API requests to this version receive a warning header in the server response. Defaults to false.
- deprecationWarning String
- deprecationWarning overrides the default warning returned to API clients. May only be set when deprecatedis true. The default warning indicates this version is deprecated and recommends use of the newest served version of equal or greater stability, if one exists.
- schema Property Map
- schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource.
- selectableFields List<Property Map>
- selectableFields specifies paths to fields that may be used as field selectors. A maximum of 8 selectable fields are allowed. See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
- subresources Property Map
- subresources specify what subresources this version of the defined custom resource have.
CustomResourceSubresourceScale, CustomResourceSubresourceScaleArgs        
CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.- SpecReplicas stringPath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- StatusReplicas stringPath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- LabelSelector stringPath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
- SpecReplicas stringPath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- StatusReplicas stringPath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- LabelSelector stringPath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
- specReplicas StringPath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- statusReplicas StringPath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- labelSelector StringPath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
- specReplicas stringPath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- statusReplicas stringPath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- labelSelector stringPath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
- spec_replicas_ strpath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- status_replicas_ strpath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- label_selector_ strpath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
- specReplicas StringPath 
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale spec.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.spec. If there is no value under the given path in the custom resource, the/scalesubresource will return an error on GET.
- statusReplicas StringPath 
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale status.replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under.status. If there is no value under the given path in the custom resource, thestatus.replicasvalue in the/scalesubresource will default to 0.
- labelSelector StringPath 
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale status.selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under.statusor.spec. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, thestatus.selectorvalue in the/scalesubresource will default to the empty string.
CustomResourceSubresources, CustomResourceSubresourcesArgs      
CustomResourceSubresources defines the status and scale subresources for CustomResources.- Scale
CustomResource Subresource Scale 
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- Status
System.Text. Json. Json Element 
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
- Scale
CustomResource Subresource Scale 
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- Status interface{}
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
- scale
CustomResource Subresource Scale 
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- status
JsonElement 
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
- scale
CustomResource Subresource Scale 
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- status any
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
- scale
CustomResource Subresource Scale 
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- status Any
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
- scale Property Map
- scale indicates the custom resource should serve a /scalesubresource that returns anautoscaling/v1Scale object.
- status JSON
- status indicates the custom resource should serve a /statussubresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to thestatusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
CustomResourceValidation, CustomResourceValidationArgs      
CustomResourceValidation is a list of validation methods for CustomResources.- OpenAPIV3Schema JSONSchemaProps 
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
- OpenAPIV3Schema JSONSchemaProps 
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
- openAPIV3Schema JSONSchemaProps 
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
- openAPIV3Schema JSONSchemaProps 
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
- open_apiv3_ JSONSchemaschema Props 
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
- openAPIV3Schema Property Map
- openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning.
ExternalDocumentation, ExternalDocumentationArgs    
ExternalDocumentation allows referencing an external resource for extended documentation.- Description string
- Url string
- Description string
- Url string
- description String
- url String
- description string
- url string
- description str
- url str
- description String
- url String
JSONSchemaProps, JSONSchemaPropsArgs    
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).- AdditionalItems JSONSchemaProps | bool
- AdditionalProperties JSONSchemaProps | bool
- AllOf List<JSONSchemaProps> 
- AnyOf List<JSONSchemaProps> 
- Default
System.Text. Json. Json Element 
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- Definitions
Dictionary<string, JSONSchemaProps> 
- Dependencies
Dictionary<string, Union<JSONSchemaProps, Immutable Array<string>>> 
- Description string
- Enum
List<System.Text. Json. Json Element> 
- Example
System.Text. Json. Json Element 
- ExclusiveMaximum bool
- ExclusiveMinimum bool
- ExternalDocs ExternalDocumentation 
- Format string
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- Id string
- Items
JSONSchemaProps | List<System.Text. Json. Json Element> 
- MaxItems int
- MaxLength int
- MaxProperties int
- Maximum double
- MinItems int
- MinLength int
- MinProperties int
- Minimum double
- MultipleOf double
- Not
JSONSchemaProps 
- Nullable bool
- OneOf List<JSONSchemaProps> 
- Pattern string
- PatternProperties Dictionary<string, JSONSchemaProps> 
- Properties
Dictionary<string, JSONSchemaProps> 
- Ref string
- Required List<string>
- Schema string
- Title string
- Type string
- UniqueItems bool
- X_kubernetes_ boolembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- X_kubernetes_ boolint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- X_kubernetes_ List<string>list_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- X_kubernetes_ stringlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- X_kubernetes_ stringmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- X_kubernetes_ boolpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- X_kubernetes_ List<Validationvalidations Rule> 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
- $Ref string
- $Schema string
- AdditionalItems JSONSchemaProps | bool
- AdditionalProperties JSONSchemaProps | bool
- AllOf []JSONSchemaProps 
- AnyOf []JSONSchemaProps 
- Default interface{}
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- Definitions
map[string]JSONSchemaProps 
- Dependencies map[string]interface{}
- Description string
- Enum []interface{}
- Example interface{}
- ExclusiveMaximum bool
- ExclusiveMinimum bool
- ExternalDocs ExternalDocumentation 
- Format string
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- Id string
- Items
JSONSchemaProps | []interface{}
- MaxItems int
- MaxLength int
- MaxProperties int
- Maximum float64
- MinItems int
- MinLength int
- MinProperties int
- Minimum float64
- MultipleOf float64
- Not
JSONSchemaProps 
- Nullable bool
- OneOf []JSONSchemaProps 
- Pattern string
- PatternProperties map[string]JSONSchemaProps 
- Properties
map[string]JSONSchemaProps 
- Required []string
- Title string
- Type string
- UniqueItems bool
- X_kubernetes_ boolembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- X_kubernetes_ boolint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- X_kubernetes_ []stringlist_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- X_kubernetes_ stringlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- X_kubernetes_ stringmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- X_kubernetes_ boolpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- X_kubernetes_ []Validationvalidations Rule 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
- $ref String
- $schema String
- additionalItems JSONSchemaProps | Boolean
- additionalProperties JSONSchemaProps | Boolean
- allOf List<JSONSchemaProps> 
- anyOf List<JSONSchemaProps> 
- default_
JsonElement 
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- definitions
Map<String,JSONSchemaProps> 
- dependencies
Map<String,Either<JSONSchemaProps,List<String>>> 
- description String
- enum_
List<JsonElement> 
- example
JsonElement 
- exclusiveMaximum Boolean
- exclusiveMinimum Boolean
- externalDocs ExternalDocumentation 
- format String
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- id String
- items
JSONSchemaProps | List<JsonElement> 
- maxItems Integer
- maxLength Integer
- maxProperties Integer
- maximum Double
- minItems Integer
- minLength Integer
- minProperties Integer
- minimum Double
- multipleOf Double
- not
JSONSchemaProps 
- nullable Boolean
- oneOf List<JSONSchemaProps> 
- pattern String
- patternProperties Map<String,JSONSchemaProps> 
- properties
Map<String,JSONSchemaProps> 
- required List<String>
- title String
- type String
- uniqueItems Boolean
- x_kubernetes_ Booleanembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- x_kubernetes_ Booleanint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- x_kubernetes_ List<String>list_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- x_kubernetes_ Stringlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- x_kubernetes_ Stringmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- x_kubernetes_ Booleanpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- x_kubernetes_ List<Validationvalidations Rule> 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
- $ref string
- $schema string
- additionalItems JSONSchemaProps | boolean
- additionalProperties JSONSchemaProps | boolean
- allOf JSONSchemaProps[] 
- anyOf JSONSchemaProps[] 
- default any
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- definitions
{[key: string]: JSONSchemaProps} 
- dependencies
{[key: string]: JSONSchemaProps | string[]} 
- description string
- enum any[]
- example any
- exclusiveMaximum boolean
- exclusiveMinimum boolean
- externalDocs ExternalDocumentation 
- format string
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- id string
- items
JSONSchemaProps | any[]
- maxItems number
- maxLength number
- maxProperties number
- maximum number
- minItems number
- minLength number
- minProperties number
- minimum number
- multipleOf number
- not
JSONSchemaProps 
- nullable boolean
- oneOf JSONSchemaProps[] 
- pattern string
- patternProperties {[key: string]: JSONSchemaProps} 
- properties
{[key: string]: JSONSchemaProps} 
- required string[]
- title string
- type string
- uniqueItems boolean
- x_kubernetes_ booleanembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- x_kubernetes_ booleanint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- x_kubernetes_ string[]list_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- x_kubernetes_ stringlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- x_kubernetes_ stringmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- x_kubernetes_ booleanpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- x_kubernetes_ Validationvalidations Rule[] 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
- _ref str
- _schema str
- additional_items JSONSchemaProps | bool
- additional_properties JSONSchemaProps | bool
- all_of Sequence[JSONSchemaProps] 
- any_of Sequence[JSONSchemaProps] 
- default Any
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- definitions
Mapping[str, JSONSchemaProps] 
- dependencies
Mapping[str, Union[JSONSchemaProps, Sequence[str]]] 
- description str
- enum Sequence[Any]
- example Any
- exclusive_maximum bool
- exclusive_minimum bool
- external_docs ExternalDocumentation 
- format str
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- id str
- items
JSONSchemaProps | Sequence[Any]
- max_items int
- max_length int
- max_properties int
- maximum float
- min_items int
- min_length int
- min_properties int
- minimum float
- multiple_of float
- not_
JSONSchemaProps 
- nullable bool
- one_of Sequence[JSONSchemaProps] 
- pattern str
- pattern_properties Mapping[str, JSONSchemaProps] 
- properties
Mapping[str, JSONSchemaProps] 
- required Sequence[str]
- title str
- type str
- unique_items bool
- x_kubernetes_ boolembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- x_kubernetes_ boolint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- x_kubernetes_ Sequence[str]list_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- x_kubernetes_ strlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- x_kubernetes_ strmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- x_kubernetes_ boolpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- x_kubernetes_ Sequence[Validationvalidations Rule] 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
- $ref String
- $schema String
- additionalItems Property Map | Boolean
- additionalProperties Property Map | Boolean
- allOf List<Property Map>
- anyOf List<Property Map>
- default JSON
- default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.
- definitions Map<Property Map>
- dependencies Map<Property Map | List<String>>
- description String
- enum List<JSON>
- example JSON
- exclusiveMaximum Boolean
- exclusiveMinimum Boolean
- externalDocs Property Map
- format String
- format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041" - isbn10: an ISBN10 number string like "0321751043" - isbn13: an ISBN13 number string like "978-0321751041" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\d{3}[- ]?\d{2}[- ]?\d{4}$ - hexcolor: an hexadecimal color code like "#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559" - byte: base64 encoded binary data - password: any kind of string - date: a date string like "2006-01-02" as defined by full-date in RFC3339 - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
 
- id String
- items Property Map | List<JSON>
- maxItems Number
- maxLength Number
- maxProperties Number
- maximum Number
- minItems Number
- minLength Number
- minProperties Number
- minimum Number
- multipleOf Number
- not Property Map
- nullable Boolean
- oneOf List<Property Map>
- pattern String
- patternProperties Map<Property Map>
- properties Map<Property Map>
- required List<String>
- title String
- type String
- uniqueItems Boolean
- x_kubernetes_ Booleanembedded_ resource 
- x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).
- x_kubernetes_ Booleanint_ or_ string 
- x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:- anyOf:- type: integer
- type: string
 
- allOf:- anyOf:- type: integer
- type: string
 
- ... zero or more
 
- anyOf:
 
- anyOf:
- x_kubernetes_ List<String>list_ map_ keys 
- x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type - mapby specifying the keys used as the index of the map.- This tag MUST only be used on lists that have the "x-kubernetes-list-type" extension set to "map". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported). - The properties specified must either be required or have a default value, to ensure those properties are present for all list items. 
- x_kubernetes_ Stringlist_ type 
- x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:- atomic: the list is treated as a single entity, like a scalar. Atomic lists will be entirely replaced when updated. This extension may be used on any type of list (struct, scalar, ...).
- set: Sets are lists that must not have multiple items with the same value. Each value must be a scalar, an object with x-kubernetes-map-type- atomicor an array with x-kubernetes-list-type- atomic.
- map: These lists are like maps in that their elements have a non-index key used to identify them. Order is preserved upon merge. The map tag must only be used on a list with elements of type object. Defaults to atomic for arrays.
 
- x_kubernetes_ Stringmap_ type 
- x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:- granular: These maps are actual maps (key-value pairs) and each fields are independent from each other (they can each be manipulated by separate actors). This is the default behaviour for all maps.
- atomic: the list is treated as a single entity, like a scalar. Atomic maps will be entirely replaced when updated.
 
- x_kubernetes_ Booleanpreserve_ unknown_ fields 
- x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
- x_kubernetes_ List<Property Map>validations 
- x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
ManagedFieldsEntry, ManagedFieldsEntryArgs      
ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.- ApiVersion string
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- FieldsType string
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- FieldsV1 System.Text. Json. Json Element 
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- Manager string
- Manager is an identifier of the workflow managing these fields.
- Operation string
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- Subresource string
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- Time string
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
- ApiVersion string
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- FieldsType string
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- FieldsV1 interface{}
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- Manager string
- Manager is an identifier of the workflow managing these fields.
- Operation string
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- Subresource string
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- Time string
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
- apiVersion String
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- fieldsType String
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- fieldsV1 JsonElement 
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- manager String
- Manager is an identifier of the workflow managing these fields.
- operation String
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- subresource String
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- time String
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
- apiVersion string
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- fieldsType string
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- fieldsV1 any
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- manager string
- Manager is an identifier of the workflow managing these fields.
- operation string
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- subresource string
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- time string
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
- api_version str
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- fields_type str
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- fields_v1 Any
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- manager str
- Manager is an identifier of the workflow managing these fields.
- operation str
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- subresource str
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- time str
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
- apiVersion String
- APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
- fieldsType String
- FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
- fieldsV1 JSON
- FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
- manager String
- Manager is an identifier of the workflow managing these fields.
- operation String
- Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
- subresource String
- Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
- time String
- Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
ObjectMeta, ObjectMetaArgs    
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.- Annotations Dictionary<string, string>
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- ClusterName string
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- CreationTimestamp string
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- DeletionGrace intPeriod Seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- DeletionTimestamp string
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- Finalizers List<string>
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- GenerateName string
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- Generation int
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- Labels Dictionary<string, string>
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- ManagedFields List<Pulumi.Kubernetes. Meta. V1. Inputs. Managed Fields Entry> 
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- Name string
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- Namespace string
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- OwnerReferences List<Pulumi.Kubernetes. Meta. V1. Inputs. Owner Reference> 
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- ResourceVersion string
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- SelfLink string
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- Uid string
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
- Annotations map[string]string
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- ClusterName string
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- CreationTimestamp string
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- DeletionGrace intPeriod Seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- DeletionTimestamp string
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- Finalizers []string
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- GenerateName string
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- Generation int
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- Labels map[string]string
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- ManagedFields ManagedFields Entry 
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- Name string
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- Namespace string
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- OwnerReferences OwnerReference 
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- ResourceVersion string
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- SelfLink string
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- Uid string
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
- annotations Map<String,String>
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- clusterName String
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- creationTimestamp String
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- deletionGrace IntegerPeriod Seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- deletionTimestamp String
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- finalizers List<String>
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- generateName String
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- generation Integer
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- labels Map<String,String>
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- managedFields List<ManagedFields Entry> 
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- name String
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- namespace String
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- ownerReferences List<OwnerReference> 
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- resourceVersion String
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- selfLink String
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- uid String
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
- annotations {[key: string]: string}
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- clusterName string
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- creationTimestamp string
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- deletionGrace numberPeriod Seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- deletionTimestamp string
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- finalizers string[]
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- generateName string
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- generation number
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- labels {[key: string]: string}
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- managedFields meta.v1.Managed Fields Entry[] 
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- name string
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- namespace string
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- ownerReferences meta.v1.Owner Reference[] 
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- resourceVersion string
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- selfLink string
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- uid string
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
- annotations Mapping[str, str]
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- cluster_name str
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- creation_timestamp str
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- deletion_grace_ intperiod_ seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- deletion_timestamp str
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- finalizers Sequence[str]
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- generate_name str
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- generation int
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- labels Mapping[str, str]
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- managed_fields Sequence[meta.v1.Managed Fields Entry] 
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- name str
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- namespace str
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- owner_references Sequence[meta.v1.Owner Reference] 
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- resource_version str
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- self_link str
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- uid str
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
- annotations Map<String>
- Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
- clusterName String
- The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
- creationTimestamp String
- CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. - Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- deletionGrace NumberPeriod Seconds 
- Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
- deletionTimestamp String
- DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. - Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata 
- finalizers List<String>
- Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
- generateName String
- GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. - If this field is specified and the generated name exists, the server will return a 409. - Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency 
- generation Number
- A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
- labels Map<String>
- Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
- managedFields List<Property Map>
- ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
- name String
- Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- namespace String
- Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. - Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces 
- ownerReferences List<Property Map>
- List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
- resourceVersion String
- An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. - Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency 
- selfLink String
- Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
- uid String
- UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. - Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids 
OwnerReference, OwnerReferenceArgs    
OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.- ApiVersion string
- API version of the referent.
- Kind string
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- Name string
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- Uid string
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- BlockOwner boolDeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- Controller bool
- If true, this reference points to the managing controller.
- ApiVersion string
- API version of the referent.
- Kind string
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- Name string
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- Uid string
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- BlockOwner boolDeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- Controller bool
- If true, this reference points to the managing controller.
- apiVersion String
- API version of the referent.
- kind String
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- name String
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- uid String
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- blockOwner BooleanDeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- controller Boolean
- If true, this reference points to the managing controller.
- apiVersion string
- API version of the referent.
- kind string
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- name string
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- uid string
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- blockOwner booleanDeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- controller boolean
- If true, this reference points to the managing controller.
- api_version str
- API version of the referent.
- kind str
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- name str
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- uid str
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- block_owner_ booldeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- controller bool
- If true, this reference points to the managing controller.
- apiVersion String
- API version of the referent.
- kind String
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- name String
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
- uid String
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
- blockOwner BooleanDeletion 
- If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
- controller Boolean
- If true, this reference points to the managing controller.
SelectableField, SelectableFieldArgs    
SelectableField specifies the JSON path of a field that may be used with field selectors.- JsonPath string
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
- JsonPath string
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
- jsonPath String
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
- jsonPath string
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
- json_path str
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
- jsonPath String
- jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.
ServiceReference, ServiceReferenceArgs    
ServiceReference holds a reference to Service.legacy.k8s.io- Name string
- name is the name of the service. Required
- Namespace string
- namespace is the namespace of the service. Required
- Path string
- path is an optional URL path at which the webhook will be contacted.
- Port int
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
- Name string
- name is the name of the service. Required
- Namespace string
- namespace is the namespace of the service. Required
- Path string
- path is an optional URL path at which the webhook will be contacted.
- Port int
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
- name String
- name is the name of the service. Required
- namespace String
- namespace is the namespace of the service. Required
- path String
- path is an optional URL path at which the webhook will be contacted.
- port Integer
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
- name string
- name is the name of the service. Required
- namespace string
- namespace is the namespace of the service. Required
- path string
- path is an optional URL path at which the webhook will be contacted.
- port number
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
- name str
- name is the name of the service. Required
- namespace str
- namespace is the namespace of the service. Required
- path str
- path is an optional URL path at which the webhook will be contacted.
- port int
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
- name String
- name is the name of the service. Required
- namespace String
- namespace is the namespace of the service. Required
- path String
- path is an optional URL path at which the webhook will be contacted.
- port Number
- port is an optional service port at which the webhook will be contacted. portshould be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.
ValidationRule, ValidationRuleArgs    
ValidationRule describes a validation rule written in the CEL expression language.- Rule string
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- FieldPath string
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- Message string
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- MessageExpression string
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- OptionalOld boolSelf 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- Reason string
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
- Rule string
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- FieldPath string
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- Message string
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- MessageExpression string
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- OptionalOld boolSelf 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- Reason string
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
- rule String
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- fieldPath String
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- message String
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- messageExpression String
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- optionalOld BooleanSelf 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- reason String
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
- rule string
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- fieldPath string
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- message string
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- messageExpression string
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- optionalOld booleanSelf 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- reason string
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
- rule str
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- field_path str
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- message str
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- message_expression str
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- optional_old_ boolself 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- reason str
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
- rule String
- Rule represents the expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The - selfvariable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}- If the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via - self.fieldand field presence can be checked via- has(self.field). Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via- self[mapKey], map containment can be checked via- mapKey in selfand all entries of the map are accessible via CEL macros and functions such as- self.all(...). If the Rule is scoped to an array, the elements of the array are accessible via- self[i]and also by macros and functions. If the Rule is scoped to a scalar,- selfis bound to the scalar value. Examples: - Rule scoped to a map of objects: {"rule": "self.components['Widget'].priority < 10"} - Rule scoped to a list of integers: {"rule": "self.values.all(value, value >= 0 && value < 100)"} - Rule scoped to a string value: {"rule": "self.startsWith('kube')"}- The - apiVersion,- kind,- metadata.nameand- metadata.generateNameare always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.- Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as: - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
- An array where the items schema is of an "unknown type"
- An object where the additionalProperties schema is of an "unknown type"
 - Only property names of the form - [a-zA-Z_.-/][a-zA-Z0-9_.-/]*are accessible. Accessible property names are escaped according to the following rules when accessed in the expression: - '' escapes to 'underscores' - '.' escapes to 'dot' - '-' escapes to 'dash' - '/' escapes to 'slash' - Property names that exactly match a CEL RESERVED keyword escape to '{keyword}__'. The keywords are: "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if", "import", "let", "loop", "package", "namespace", "return". Examples:- Rule accessing a property named "namespace": {"rule": "self.namespace > 0"}
- Rule accessing a property named "x-prop": {"rule": "self.x__dash__prop > 0"}
- Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
 - Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type: - 'set': X + Yperforms a union where the array positions of all elements inXare preserved and non-intersecting elements inYare appended, retaining their partial order.
- 'map': X + Yperforms a merge where the array positions of all keys inXare preserved but the values are overwritten by values inYwhen the key sets ofXandYintersect. Elements inYwith non-intersecting keys are appended, retaining their partial order.
 - If - rulemakes use of the- oldSelfvariable it is implicitly a- transition rule.- By default, the - oldSelfvariable is the same type as- self. When- optionalOldSelfis true, the- oldSelfvariable is a CEL optional variable whose value() is the same type as- self. See the documentation for the- optionalOldSelffield for details.- Transition rules by default are applied only on UPDATE requests and are skipped if an old value could not be found. You can opt a transition rule into unconditional evaluation by setting - optionalOldSelfto true.
- fieldPath String
- fieldPath represents the field path returned when the validation fails. It must be a relative JSON path (i.e. with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field. e.g. when validation checks if a specific attribute foounder a maptestMap, the fieldPath could be set to.testMap.fooIf the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g..testListIt does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to JSONPath support in Kubernetes for more info. Numeric index of array is not supported. For field name which contains special characters, use['specialName']to refer the field name. e.g. for attributefoo.34$appears in a listtestList, the fieldPath could be set to.testList['foo.34$']
- message String
- Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is "failed rule: {Rule}". e.g. "must be a URL with the host matching spec.host"
- messageExpression String
- MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
- optionalOld BooleanSelf 
- optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value. - When enabled - oldSelfwill be a CEL optional whose value will be- Noneif there is no old value, or when the object is initially created.- You may check for presence of oldSelf using - oldSelf.hasValue()and unwrap it after checking using- oldSelf.value(). Check the CEL documentation for Optional types for more information: https://pkg.go.dev/github.com/google/cel-go/cel#OptionalTypes- May not be set unless - oldSelfis used in- rule.
- reason String
- reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate". If not set, default to use "FieldValueInvalid". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
WebhookClientConfig, WebhookClientConfigArgs      
WebhookClientConfig contains the information to make a TLS connection with the webhook.- CaBundle string
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- Service
ServiceReference 
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- Url string
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
- CaBundle string
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- Service
ServiceReference 
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- Url string
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
- caBundle String
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- service
ServiceReference 
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- url String
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
- caBundle string
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- service
ServiceReference 
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- url string
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
- ca_bundle str
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- service
ServiceReference 
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- url str
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
- caBundle String
- caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.
- service Property Map
- service is a reference to the service for this webhook. Either service or url must be specified. - If the webhook is running within the cluster, then you should use - service.
- url String
- url gives the location of the webhook, in standard URL form ( - scheme://host:port/path). Exactly one of- urlor- servicemust be specified.- The - hostshould not refer to a service running in the cluster; use the- servicefield instead. The host might be resolved via external DNS in some apiservers (e.g.,- kube-apiservercannot resolve in-cluster DNS as that would be a layering violation).- hostmay also be an IP address.- Please note that using - localhostor- 127.0.0.1as a- hostis risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.- The scheme must be "https"; the URL must begin with "https://". - A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. - Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either. 
WebhookConversion, WebhookConversionArgs    
WebhookConversion describes how to call a conversion webhook- ConversionReview List<string>Versions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- ClientConfig WebhookClient Config 
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
- ConversionReview []stringVersions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- ClientConfig WebhookClient Config 
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
- conversionReview List<String>Versions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- clientConfig WebhookClient Config 
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
- conversionReview string[]Versions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- clientConfig WebhookClient Config 
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
- conversion_review_ Sequence[str]versions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- client_config WebhookClient Config 
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
- conversionReview List<String>Versions 
- conversionReviewVersions is an ordered list of preferred ConversionReviewversions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.
- clientConfig Property Map
- clientConfig is the instructions for how to call the webhook if strategy is Webhook.
Package Details
- Repository
- Kubernetes pulumi/pulumi-kubernetes
- License
- Apache-2.0
